projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f992bd8
)
(remove-overlays): Docstring change.
author
Stefan Monnier
<monnier@iro.umontreal.ca>
Thu, 29 Apr 2004 18:42:24 +0000
(18:42 +0000)
committer
Stefan Monnier
<monnier@iro.umontreal.ca>
Thu, 29 Apr 2004 18:42:24 +0000
(18:42 +0000)
lisp/subr.el
patch
|
blob
|
history
diff --git
a/lisp/subr.el
b/lisp/subr.el
index a9acc15606d92273f8e53aba9e6ff0cf3658a29f..e81713ebf2983bb85a9c5e9141b5bf28eed291ca 100644
(file)
--- a/
lisp/subr.el
+++ b/
lisp/subr.el
@@
-1531,8
+1531,7
@@
If MESSAGE is nil, instructions to type EXIT-CHAR are displayed there."
(defun remove-overlays (&optional beg end name val)
"Clear BEG and END of overlays whose property NAME has value VAL.
Overlays might be moved and or split.
-If BEG is nil, `(point-min)' is used. If END is nil, `(point-max)'
-is used."
+BEG and END default to the beginning resp. end of buffer."
(unless beg (setq beg (point-min)))
(unless end (setq end (point-max)))
(if (< end beg)